home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / init.d / kismet < prev    next >
Text File  |  2006-04-19  |  750b  |  28 lines

  1. #!/sbin/runscript
  2. # Copyright 1999-2006 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. # $Header: /var/cvsroot/gentoo-x86/net-wireless/kismet/files/kismet-2006.04.1-init.d,v 1.1 2006/04/14 11:33:38 brix Exp $
  5.  
  6. checkconfig() {
  7.     if [ ! -e /etc/kismet.conf ]; then
  8.         eerror "Configuration file /etc/kismet.conf not found"
  9.         return 1
  10.     fi
  11. }
  12.  
  13. start() {
  14.     checkconfig || return 1
  15.  
  16.     ebegin "Starting kismet server"
  17.     start-stop-daemon --start --quiet --pidfile /var/run/kismet_server.pid \
  18.         --background --make-pidfile --exec /usr/bin/kismet_server \
  19.         -- ${KISMET_SERVER_OPTIONS}
  20.     eend ${?}
  21. }
  22.  
  23. stop() {
  24.     ebegin "Stopping kismet server"
  25.     start-stop-daemon --stop --quiet --pidfile /var/run/kismet_server.pid
  26.     eend ${?}
  27. }
  28.